@font-face {
  font-family: 'Inter';
  src: url('path/to/Inter.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* FONT COLOR THEME */
.font-theme {
  color: #242424;
}
@media (prefers-color-scheme: dark) {
  .font-theme {
    color: #ffffff;
  }
}
/* Only child inherits */
.font-theme * {
  color: inherit;
}

/* Headings structure baseline fix */
:is([class*="u-text-style-"], h1, h2, h3, h4, h5, h6, blockquote) {
  display: flow-root;
}
:is([class*="u-text-style-"], h1, h2, h3, h4, h5, h6, blockquote)::before {
  content: "";
  display: table;
  margin-bottom: calc(-0.3h + 0.34em);
}
:is([class*="u-text-style-"], h1, h2, h3, h4, h5, h6, blockquote)::after {
  content: "";
  display: table;
  margin-bottom: calc(-0.3h + 0.39em);
}

/* HERO HEADING */
.hero-heading {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;

  font-size: clamp(40px, 6vw, 120px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* SUBTEXT TITLE */
.subtext-title {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 650;
  font-size: clamp(35px, 3.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  padding: 0;
}

/* SUBTEXT */
.subtext {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 450;
  font-size: clamp(25px, 2.2vw, 35px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  padding: 0;
}

/* CONTEXT (smaller paragraphs or metadata) */
.context {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 350;
  font-size: clamp(18px, 1.3vw, 25px);
  line-height: 1.2;
  letter-spacing: -0.011em;
  margin: 0;
  padding: 0;
}

